home *** CD-ROM | disk | FTP | other *** search
/ Transformers: Revenge of …he Game: Press Kit (USA) / Transformers - Revenge of the Fallen - The Game - Press Kit (USA).bin / Transformers.swf / scripts / fl / video / MetadataEvent.as < prev    next >
Text File  |  2009-06-19  |  1KB  |  50 lines

  1. package fl.video
  2. {
  3.    import flash.events.Event;
  4.    
  5.    public class MetadataEvent extends Event implements IVPEvent
  6.    {
  7.       
  8.       public static const METADATA_RECEIVED:String = "metadataReceived";
  9.       
  10.       public static const CUE_POINT:String = "cuePoint";
  11.        
  12.       
  13.       private var _info:Object;
  14.       
  15.       private var _vp:uint;
  16.       
  17.       public function MetadataEvent(param1:String, param2:Boolean = false, param3:Boolean = false, param4:Object = null, param5:uint = 0)
  18.       {
  19.          super(param1,param2,param3);
  20.          _info = param4;
  21.          _vp = param5;
  22.       }
  23.       
  24.       public function set info(param1:Object) : void
  25.       {
  26.          _info = param1;
  27.       }
  28.       
  29.       public function get vp() : uint
  30.       {
  31.          return _vp;
  32.       }
  33.       
  34.       public function get info() : Object
  35.       {
  36.          return _info;
  37.       }
  38.       
  39.       public function set vp(param1:uint) : void
  40.       {
  41.          _vp = param1;
  42.       }
  43.       
  44.       override public function clone() : Event
  45.       {
  46.          return new MetadataEvent(type,bubbles,cancelable,info,vp);
  47.       }
  48.    }
  49. }
  50.